home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection Student Program / ADC Tools Sampler CD Disk 3 1999.iso / Metrowerks CodeWarrior / Java Support / Java_Source / Java2 / src / sunw / io / Serializable.java
Encoding:
Java Source  |  1999-05-28  |  1.6 KB  |  44 lines  |  [TEXT/CWIE]

  1. /*
  2.  * @(#)Serializable.java    1.8 98/09/21
  3.  *
  4.  * Copyright 1996-1998 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  * 
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15. package sunw.io;
  16.  
  17. /**
  18.  * FOR BACKWARD COMPATIBILITY ONLY - DO NOT USE.
  19.  * <p>
  20.  * This is a backwards compatibility class to allow Java Beans that
  21.  * were developed under JDK 1.0.2 to run correctly under JDK 1.1
  22.  * <p>
  23.  * To allow beans development under JDK 1.0.2, JavaSoft delivered three
  24.  * no-op interfaces/classes (sunw.io.Serializable, sunw.util.EventObject
  25.  * and sunw.util.EventListener) that could be downloaded into JDK 1.0.2
  26.  * systems and which would act as placeholders for the real JDK 1.1
  27.  * classes.
  28.  * <p>
  29.  * Now under JDK 1.1 we provide versions of these classes and interfaces
  30.  * that inherit from the real version in java.util and java.io.  These
  31.  * mean that beans developed under JDK 1.0.2 against the sunw.* classes
  32.  * will now continue to work on JDK 1.1 and will (indirectly) inherit
  33.  * from the appropriate java.* interfaces/classes.
  34.  *
  35.  * @deprecated This is a compatibility type to allow Java Beans that
  36.  * were developed under JDK 1.0.2 to run correctly under JDK 1.1.  The
  37.  * corresponding JDK1.1 type is java.io.Serializable
  38.  *
  39.  * @see java.io.Serializable
  40.  */
  41.  
  42. public interface Serializable extends java.io.Serializable {
  43. }
  44.